home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 13937 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  846 b 

  1. Path: lrz-muenchen.de!news
  2. From: watzka@stat.uni-muenchen.de (Kurt Watzka)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: Need help reading EXCEL documents
  5. Date: 10 Apr 1996 19:45:44 GMT
  6. Organization: Leibniz-Rechenzentrum, Muenchen (Germany)
  7. Distribution: world
  8. Message-ID: <4kh358$9vg@sparcserver.lrz-muenchen.de>
  9. References: <4kgkaa$r16@news2.cais.com>
  10. NNTP-Posting-Host: sun2.lrz-muenchen.de
  11.  
  12. sandy@bitware.com (Sandy Bittman) writes:
  13.  
  14. >Does anyone know of a way to open a .xls file and read it.  I am using
  15. >MS Visual C++ if that is any help.
  16.  
  17.    FILE *fp;
  18.  
  19.    fp = fopen("foo.xls", "rb");
  20.  
  21. You can read the file with fread(). For information about the _format_
  22. of such a file, try to refer to the vendor of the program that creates
  23. that file.
  24.  
  25. Kurt
  26. --
  27. | Kurt Watzka                             Phone : +49-89-2180-6254
  28. | watzka@stat.uni-muenchen.de
  29.  
  30.